You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Vector Structure > Vector Methods > GetCol Method > Vector.GetCol Method ([In] TMtx, int)
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Vector.GetCol Method ([In] TMtx, int)

Copies a column from matrix.

Syntax
C#
Visual Basic
public TVec GetCol([In] TMtx Mtx, int aCol);

Copies the Col-th column from Mtx matrix to calling vector. The Length and Complex properties of calling vector are adjusted automatically. An exception is raised if condition checking is enabled and Col is greater than Mtx.Cols-1.

var a: Vector; b: Matrix; begin b.SetIt(2,2,False,[1,2, 3,4]); a.GetCol(b,0); // a now contains [1,3] end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!